Track External Queries
POST /api/v1/trackers/:status
Description
This endpoint allows you to track external queries by sending a POST request. You can specify the :status parameter in the URL path, which is required.countries.
-
URL:
-
Raw:
/api/v1/trackers/:status -
Host: ``
-
Path:
/api/v1/trackers/:status
-
-
URL Parameters:
- status: (Required)
Response:
- Status: OK (200)
/api/v1/trackers/:status
Headers
| Content-Type | Value |
|---|---|
| Content-Type | application/json |
Body (raw)
{
"clientApiKey": "<string>",
"requestMethod": "<string>",
"requestUrl": "<string>"
}
Response: 201
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v1/trackers/:status \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!